home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ IRP Stack Size.xpl < prev    next >
Text File  |  2001-04-28  |  2KB  |  50 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Server"
  5. "NAME"="IRP Stack Size"
  6. "OSVERSION"="010101"
  7. "WARNING"="1"
  8. "VERSION"="1.10"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="IRP Stack Size"
  11. "DESCRIPTION 1"="If a Windows server returns a message that there is not enough server storage available, the IRP Stack Size can be increased."
  12. "DESCRIPTION 2"="Enter the desired Stack Size; valid values range from 1 to 12."
  13. "DESCRIPTION 3"="Note: Windows NT [SP4 and prior] uses 4 as a default; Windows NT4 [SP5] and Windows 2000 use a *minimum* of 7."
  14. "DESCRIPTION 4"="To restore the default value, clear the field."
  15. "AUTHOR"="Ojatex@aol.com"
  16. "CONTACTURL"="http://members.aol.com/ojatex/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com"
  19. "COMMENT 2"="Thanks to CptSiskoX for suggested plugin."
  20. "COMMENT 3"="For more information, see 'Changes in IRP Stack Size in Lanman Server' at http://support.microsoft.com/support/kb/articles/Q198/3/86.ASP."
  21.  
  22. sP="HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters\IRPStackSize "
  23.  
  24. Sub Plugin_Initialize 
  25.  if GetWinVer=2 or GetWinVer=4 or GetWinVer=6 then
  26.     i=RegReadValue(sP)
  27.     SetUIElement 1,i
  28.  else
  29.     Disable
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  i=GetUIElement(1)
  38.  
  39.  if len(i)=0 then
  40.     If RegValueExists(sP) then RegDeleteValue(sP)
  41.  else
  42.     Call RegWriteValue(sP,i,2)
  43.  end if
  44.  
  45.  Call Restart()
  46. End Sub
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.